home *** CD-ROM | disk | FTP | other *** search
/ Turnbull China Bikeride / Turnbull China Bikeride - Disc 2.iso / BARNET / INTERNET / HTML-UTILS / WEBGIF / !WebGIF / gd / h / gd next >
Text File  |  1995-06-25  |  6KB  |  161 lines

  1. #ifndef GD_H
  2. #define GD_H 1
  3.  
  4. #include <stdio.h>
  5.  
  6. /* gd.h: declarations file for the gifdraw module.
  7.  
  8.         Written by Tom Boutell, 5/94.
  9.         Copyright 1994, Cold Spring Harbor Labs.
  10.         Permission granted to use this code in any fashion provided
  11.         that this notice is retained and any alterations are
  12.         labeled as such. It is requested, but not required, that
  13.         you share extensions to this module with us so that we
  14.         can incorporate them into new versions. */
  15.  
  16. /* This can't be changed, it's part of the GIF specification. */
  17.  
  18. #define gdMaxColors 256
  19.  
  20. /* Image type. See functions below; you will not need to change
  21.         the elements directly. Use the provided macros to
  22.         access sx, sy, the color table, and colorsTotal for 
  23.         read-only purposes. */
  24.  
  25. typedef struct gdImageStruct {
  26.         unsigned char ** pixels;
  27.         int sx;
  28.         int sy;
  29.         int colorsTotal;
  30.         int red[gdMaxColors];
  31.         int green[gdMaxColors];
  32.         int blue[gdMaxColors]; 
  33.         int open[gdMaxColors];
  34.         int transparent;
  35.         int *polyInts;
  36.         int polyAllocated;
  37.         struct gdImageStruct *brush;
  38.         struct gdImageStruct *tile;     
  39.         int brushColorMap[gdMaxColors];
  40.         int tileColorMap[gdMaxColors];
  41.         int styleLength;
  42.         int stylePos;
  43.         unsigned int *style;   /* 'unsigned added by PRL to stop Acorn C complaining */
  44.         int interlace;
  45. } gdImage;
  46.  
  47. typedef gdImage * gdImagePtr;
  48.  
  49. typedef struct {
  50.         /* # of characters in font */
  51.         int nchars;
  52.         /* First character is numbered... (usually 32 = space) */
  53.         int offset;
  54.         /* Character width and height */
  55.         int w;
  56.         int h;
  57.         /* Font data; array of characters, one row after another.
  58.                 Easily included in code, also easily loaded from
  59.                 data files. */
  60.         char *data;
  61. } gdFont;
  62.  
  63. /* Text functions take these. */
  64. typedef gdFont *gdFontPtr;
  65.  
  66. /* For backwards compatibility only. Use gdImageSetStyle()
  67.         for MUCH more flexible line drawing. Also see
  68.         gdImageSetBrush(). */
  69. #define gdDashSize 4
  70.  
  71. /* Special colors. */
  72.  
  73. #define gdStyled (-2)
  74. #define gdBrushed (-3)
  75. #define gdStyledBrushed (-4)
  76. #define gdTiled (-5)
  77.  
  78. /* NOT the same as the transparent color index.
  79.         This is used in line styles only. */
  80. #define gdTransparent (-6)
  81.  
  82. /* Functions to manipulate images. */
  83.  
  84. gdImagePtr gdImageCreate(int sx, int sy);
  85. gdImagePtr gdImageCreateFromGif(FILE *fd);
  86. gdImagePtr gdImageCreateFromGd(FILE *fd);
  87. gdImagePtr gdImageCreateFromXbm(FILE *fd);
  88. void gdImageDestroy(gdImagePtr im);
  89. void gdImageSetPixel(gdImagePtr im, int x, int y, int color);
  90. int gdImageGetPixel(gdImagePtr im, int x, int y);
  91. void gdImageLine(gdImagePtr im, int x1, int y1, 
  92.         int x2, int y2, int color);
  93. /* For backwards compatibility only. Use gdImageSetStyle()
  94.         for much more flexible line drawing. */
  95. void gdImageDashedLine(gdImagePtr im, int x1, int y1, 
  96.         int x2, int y2, int color);
  97. /* Corners specified (not width and height). Upper left first, lower right
  98.         second. */
  99. void gdImageRectangle(gdImagePtr im, int x1, int y1, 
  100.         int x2, int y2, int color);
  101. /* Solid bar. Upper left corner first, lower right corner second. */
  102. void gdImageFilledRectangle(gdImagePtr im, int x1, int y1, 
  103.         int x2, int y2, int color);
  104. int gdImageBoundsSafe(gdImagePtr im, int x, int y);
  105. void gdImageChar(gdImagePtr im, gdFontPtr font, int x, int y, 
  106.         int c, int color);
  107. void gdImageCharUp(gdImagePtr im, gdFontPtr font, int x, int y, 
  108.         int c, int color);
  109. void gdImageString(gdImagePtr im, gdFontPtr font, int x, int y, 
  110.         char *s, int color);
  111. void gdImageStringUp(gdImagePtr im, gdFontPtr font, int x, int y, 
  112.         char *s, int color);
  113.  
  114. /* Point type for use in polygon drawing. */
  115.  
  116. typedef struct {
  117.         int x, y;
  118. } gdPoint, *gdPointPtr;
  119.  
  120. void gdImagePolygon(gdImagePtr im, gdPointPtr p, 
  121.         int pointsTotal, int color);
  122. void gdImageFilledPolygon(gdImagePtr im, gdPointPtr p, int pointsTotal,
  123.         int color);
  124.  
  125. int gdImageColorAllocate(gdImagePtr im, int r, int g, int b);
  126. int gdImageColorClosest(gdImagePtr im, int r, int g, int b);
  127. int gdImageColorExact(gdImagePtr im, int r, int g, int b);
  128. void gdImageColorDeallocate(gdImagePtr im, int color);
  129. void gdImageColorTransparent(gdImagePtr im, int color);
  130. void gdImageGif(gdImagePtr im, FILE *out);
  131. void gdImageGd(gdImagePtr im, FILE *out);
  132. void gdImageArc(gdImagePtr im, int cx, int cy, int w, int h, 
  133.         int s, int e, int color);
  134. void gdImageFillToBorder(gdImagePtr im, int x, int y, 
  135.         int border, int color);
  136. void gdImageFill(gdImagePtr im, int x, int y, int color);
  137. void gdImageCopy(gdImagePtr dst, gdImagePtr src,
  138.         int dstX, int dstY, int srcX, int srcY, int w, int h);
  139. /* Stretches or shrinks to fit, as needed */
  140. void gdImageCopyResized(gdImagePtr dst, gdImagePtr src,
  141.         int dstX, int dstY, int srcX, int srcY, int destw, int desth,
  142.         int srcw, int srch);
  143. void gdImageSetBrush(gdImagePtr im, gdImagePtr brush);
  144. void gdImageSetTile(gdImagePtr im, gdImagePtr tile);
  145. void gdImageSetStyle(gdImagePtr im, int *style,
  146.         int noOfPixels);
  147. /* On or off (1 or 0) */
  148. void gdImageInterlace(gdImagePtr im, int interlace);
  149.  
  150. /* Macros to access information about images. READ ONLY. Changing
  151.         these values will NOT have the desired result. */
  152. #define gdImageSX(im) ((im)->sx)
  153. #define gdImageSY(im) ((im)->sy)
  154. #define gdImageColorsTotal(im) ((im)->colorsTotal)
  155. #define gdImageRed(im, c) ((im)->red[(c)])
  156. #define gdImageGreen(im, c) ((im)->green[(c)])
  157. #define gdImageBlue(im, c) ((im)->blue[(c)])
  158. #define gdImageGetTransparent(im) ((im)->transparent)
  159. #define gdImageGetInterlaced(im) ((im)->interlace)
  160. #endif
  161.